home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / Interfaces&Libraries / Universal / Interfaces / AIncludes / GoggleSprocket.a < prev    next >
Encoding:
Text File  |  1998-02-12  |  1.6 KB  |  67 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        GoggleSprocket.a
  3. ;
  4. ;    Contains:    Games Sprockets: GoggleSprocket interfaces
  5. ;
  6. ;    Version:    Technology:    Goggle Sprocket 1.1
  7. ;                Release:    Universal Interfaces 3.1
  8. ;
  9. ;    Copyright:    © 1996-1998 by Apple Computer, Inc., all rights reserved.
  10. ;
  11. ;    Bugs?:        Please include the the file and version information (from above) with
  12. ;                the problem description.  Developers belonging to one of the Apple
  13. ;                developer programs can submit bug reports to:
  14. ;
  15. ;                    devsupport@apple.com
  16. ;
  17. ;
  18.     IF &TYPE('__GOGGLESPROCKET__') = 'UNDEFINED' THEN
  19. __GOGGLESPROCKET__ SET 1
  20.  
  21.     IF &TYPE('__MACTYPES__') = 'UNDEFINED' THEN
  22.     include 'MacTypes.a'
  23.     ENDIF
  24.     IF &TYPE('__EVENTS__') = 'UNDEFINED' THEN
  25.     include 'Events.a'
  26.     ENDIF
  27.  
  28.     IF TARGET_CPU_PPC THEN
  29. ;********************************************************************************
  30. ;** constants & data types
  31. ;********************************************************************************
  32. ;
  33.  
  34. ;********************************************************************************
  35. ;** prototypes for application level calls
  36. ;********************************************************************************
  37. ;
  38.  
  39. ;  general 
  40. ;
  41. ; extern OSStatus GSpStartup(UInt32 inReserved)
  42. ;
  43.     IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
  44.         IMPORT_CFM_FUNCTION GSpStartup
  45.     ENDIF
  46.  
  47. ;
  48. ; extern OSStatus GSpShutdown(UInt32 inReserved)
  49. ;
  50.     IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
  51.         IMPORT_CFM_FUNCTION GSpShutdown
  52.     ENDIF
  53.  
  54. ;  configuration 
  55. ;
  56. ; extern OSStatus GSpConfigure(GSpEventProcPtr inEventProc, Point *inUpperLeft)
  57. ;
  58.     IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
  59.         IMPORT_CFM_FUNCTION GSpConfigure
  60.     ENDIF
  61.  
  62.     ENDIF    ; TARGET_CPU_PPC
  63.     ENDIF ; __GOGGLESPROCKET__ 
  64.  
  65.